Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.IO.Exchangeable Namespace / IExtensionCollection<T> Interface / Find Method / Find<E>(Guid) Method
The type of extension object.
The GUID key of the item.


In This Topic
    Find<E>(Guid) Method
    In This Topic
    Finds the specified extension object in the collection.
    Syntax
    'Declaration
     
    
    Overloads Function Find(Of E As IExtension(Of T))( _
       ByVal key As Guid _
    ) As E
    'Usage
     
    
    Dim instance As IExtensionCollection(Of T)
    Dim key As Guid
    Dim value As E
     
    value = instance.Find(Of E)(key)
    E Find<E>( 
       Guid key
    )
    where E: IExtension<T>

    Parameters

    key
    The GUID key of the item.

    Type Parameters

    E
    The type of extension object.

    Return Value

    The extension object that was found.
    See Also